xend: Fix name uniqueness check (revert 15168:a717cb2fac90).
authorKeir Fraser <keir@xensource.com>
Thu, 27 Sep 2007 17:08:11 +0000 (18:08 +0100)
committerKeir Fraser <keir@xensource.com>
Thu, 27 Sep 2007 17:08:11 +0000 (18:08 +0100)
commit9f5581fda701ef44f339bda7462907de5e85ede8
tree200b2799c7bc145815e7dbaf6ba4ab5a33b51ee0
parentcd76c0a1edd26aed8ad9bdb8144b20e0b335cea2
xend: Fix name uniqueness check (revert 15168:a717cb2fac90).

Changeset 15168:a717cb2fac90 altered check_name() in XendDomainInfo so
that it compares domain IDs instead of UUIDs. This breaks a number of
things

 - You can no longer use 'xm new' to define a persistent config file for
   a running guest. This breaks the key OS provisioning scenario where
   you boot a kenrel+initrd for the installer, and at the same time
   define a permanent config with pygrub.

 - It lets you define multiple inactive guests with different UUIDs, but
   the same name because all inactive guests have a domid of None. So
   you can now end up with multiple guests with same name, which is
   contrary to the goal implied by the patch which was name uniqueness.

It is unclear from the original commit logs just what scenario it was
trying to protect against, but the original checking of uniqueness
based on UUID was correct & is what was used in previous releases XenD.

Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
tools/python/xen/xend/XendDomainInfo.py